home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / WINDOWS / MWPROPVW.ARJ / MEWLDEMO.WIN < prev    next >
Text File  |  1992-01-27  |  458b  |  28 lines

  1. CC = cl
  2. CFLAGS = -c -Gsw -Od -Zpe -AS -DPROPVIEW
  3.  
  4. APP = mewldemo
  5. OBJS = $(APP).obj propview.obj
  6.  
  7. # Inference rules for C
  8. .c.obj :
  9.     $(CC) $(CFLAGS) $*.c
  10.  
  11.  
  12. all : $(APP).exe
  13.  
  14.  
  15. $(APP).obj  : $(APP).c
  16.  
  17. propview.obj: propview.c
  18.  
  19. $(APP).res: $(APP).rc
  20.     rc -r $(APP).rc
  21.  
  22. $(APP).exe: $(OBJS) $(APP).def $(APP).res
  23.     link /NOE /NOD $(OBJS),$(APP),nul,slibcew libw, $(APP).def
  24.     rc $(APP).res
  25.  
  26. $(APP).exe: $(APP).res
  27.     rc $(APP).res
  28.